.body {
    background: blue;
    display:flex;
    align-items: center;
    flex-direction: column;
    height: fit-content;
    width: 100%;
    height: 50px;
}

.BlogContainer { 
    overflow-y: scroll;
    background-color: brown;
    display:flex;
    align-items: center;
    flex-direction: column;
    height: 100%;
    width: 80%;
    margin: 10px;
    justify-content: space-evenly;
}

.BlogPost {
    margin-top: 10px;
    padding: 10px;
    background: rgb(9, 255, 0);
    width: 90%;
    display: flex;
    text-align: center;
    flex-direction: column;
}